FillRule Enumeration
Specifies how the intersecting areas of objects contained in a drawing and grafic are combined to form the area.
Namespace: Independentsoft.Office.Odf.StylesAssembly: Independentsoft.Calc (in Independentsoft.Calc.dll) Version: 3.0.520.1+c6c593d5629a051e0af021b238c5d69d764f9686
Public Enumeration FillRule
| NonZero | 0 |
Rule that determines whether a point is in the fill region by drawing a ray from that point to infinity in any direction and counting the number of path segments within the given shape that the ray crosses. If this number is odd, the point is inside; if even, the point is outside.
|
| EvenOdd | 1 |
Rule that determines whether a point is in the fill region of the path by drawing a ray from that point to infinity in any direction and then examining the places where a segment of the shape crosses the ray.
|
| None | 2 |
None.
|